renamed from PENDING_OUTPUT_COUNT.
#ifdef emacs
#ifdef _IO_STDIO_H
/* new C libio names */
-#define PENDING_OUTPUT_COUNT(FILE) \
+#define GNU_LIBRARY_PENDING_OUTPUT_COUNT(FILE) \
((FILE)->_IO_write_ptr - (FILE)->_IO_write_base)
#else /* !_IO_STDIO_H */
/* old C++ iostream names */
-#define PENDING_OUTPUT_COUNT(FILE) \
+#define GNU_LIBRARY_PENDING_OUTPUT_COUNT(FILE) \
((FILE)->_pptr - (FILE)->_pbase)
#endif /* !_IO_STDIO_H */
#endif /* emacs */